.LoginBox{
    width: fit-content;
    background-color: #296132;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px 5px 5px 5px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.75);
    max-width:601px;
}
.LoginBox > div{
    background-color: white;
    border-radius: 5px;
    padding:11px;
    max-height: 400px;
    overflow-y: auto;
}
.LoginBox a{
    color: white;
    border: outset 2px #296132;
    display: block;
    padding:0px 10px 0px 10px; 
    background-color: #296132;
    text-align: center;
    font-size: 16pt;
    font-family: Open_Sans;
    text-wrap: nowrap;
    border-radius: 3px;
}
.LoginBox a:hover{
    background-color: #468250;
    box-shadow: inset 0px 0px 14px -5px black;
    cursor:pointer;
}
.LoginBox Label{
    font-size:11pt;
    font-family: Montserrat;
    /* Open Sans || Monsterat */
}
.LoginBox input{
    height: 30px;
    width: 100%;
    margin-top: 3px;
    font-size: 15pt;
    box-sizing: border-box;
}
.LoginBox select{
    height:30px;
    margin-top:3px;
}
.LoginBox a:active{
    background-color: #24582c;
    box-shadow: inset 0px 0px 14px -5px black;
}
.LoginBox_A_Small{
    text-align:left !important; 
    text-wrap:nowrap; 
    width:min-content; 
    font-size:9pt !important;
}
.LoginBox > div > div:first-child{
    border-bottom: 2px dashed #224528; 
}
.LoginBox > div > div{
    padding: 11px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.LoginBox > div > div:last-child{
    display: flex;
    justify-content: space-between;
}
.LoginBox > div > div > img{
    display: block;
    height: 55px;
    margin: 0 auto;
}
.LoginBox_Long{
    display:flex;
    gap:10px;
    align-items:flex-end;
    justify-content: space-between;
}
.LoginBox_Long > div{
    flex-grow:1;
}
.Login_Error{
    color: red;
    font-size: 8pt !important;
    font-family: Open_Sans !important;
}
.Login_Success_Box{
    background-color: #3b90ff;
    color: white;
    text-align: center;
    font-family: Open_Sans;
    font-weight: bold;
    font-size: 14pt;
    padding: 5px;
    margin-left: 0px;
    margin-right: 0px;
    border-radius: 3px;
    box-shadow: 0px 2px 6px -2px black;
}
.Login_Error_Box {
  background-color: #ff3b3b;
  color: white;
  text-align: center;
  font-family: Open_Sans;
  font-weight: bold;
  font-size: 14pt;
  padding: 5px;
  margin-left: 0px;
  margin-right: 0px;
  border-radius: 3px;
  box-shadow: 0px 2px 6px -2px black;
}
.LoginBox_Fade_Out{
	-webkit-animation: LoginBox_Fade_Out 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: LoginBox_Fade_Out 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes LoginBox_Fade_Out{
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
}
@keyframes LoginBox_Fade_Out{
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
}
.LoginBox_Fade_In{
	-webkit-animation: LoginBox_Fade_In 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: LoginBox_Fade_In 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes LoginBox_Fade_In{
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.LoginBox_Container_Fade_In{
	-webkit-animation: LoginBox_Container_Fade_In 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: LoginBox_Container_Fade_In 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes LoginBox_Container_Fade_In{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.LoginBox_Container_Fade_Out{
	-webkit-animation: LoginBox_Container_Fade_Out 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: LoginBox_Container_Fade_Out 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes LoginBox_Container_Fade_Out{
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}